home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / events / FlexEvent.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  2.4 KB  |  80 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class FlexEvent extends Event
  9.    {
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.       
  12.       public static const ADD:String = "add";
  13.       
  14.       public static const APPLICATION_COMPLETE:String = "applicationComplete";
  15.       
  16.       public static const BUTTON_DOWN:String = "buttonDown";
  17.       
  18.       public static const CREATION_COMPLETE:String = "creationComplete";
  19.       
  20.       public static const CURSOR_UPDATE:String = "cursorUpdate";
  21.       
  22.       public static const DATA_CHANGE:String = "dataChange";
  23.       
  24.       public static const ENTER:String = "enter";
  25.       
  26.       public static const ENTER_STATE:String = "enterState";
  27.       
  28.       public static const EXIT_STATE:String = "exitState";
  29.       
  30.       public static const HIDE:String = "hide";
  31.       
  32.       public static const IDLE:String = "idle";
  33.       
  34.       public static const INIT_COMPLETE:String = "initComplete";
  35.       
  36.       public static const INIT_PROGRESS:String = "initProgress";
  37.       
  38.       public static const INITIALIZE:String = "initialize";
  39.       
  40.       public static const INVALID:String = "invalid";
  41.       
  42.       public static const LOADING:String = "loading";
  43.       
  44.       public static const PREINITIALIZE:String = "preinitialize";
  45.       
  46.       public static const PRELOADER_DONE:String = "preloaderDone";
  47.       
  48.       public static const REMOVE:String = "remove";
  49.       
  50.       public static const REPEAT:String = "repeat";
  51.       
  52.       public static const REPEAT_END:String = "repeatEnd";
  53.       
  54.       public static const REPEAT_START:String = "repeatStart";
  55.       
  56.       public static const SHOW:String = "show";
  57.       
  58.       public static const TRANSFORM_CHANGE:String = "transformChange";
  59.       
  60.       public static const UPDATE_COMPLETE:String = "updateComplete";
  61.       
  62.       public static const URL_CHANGED:String = "urlChanged";
  63.       
  64.       public static const VALID:String = "valid";
  65.       
  66.       public static const VALUE_COMMIT:String = "valueCommit";
  67.       
  68.       public function FlexEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
  69.       {
  70.          super(param1,param2,param3);
  71.       }
  72.       
  73.       override public function clone() : Event
  74.       {
  75.          return new FlexEvent(type,bubbles,cancelable);
  76.       }
  77.    }
  78. }
  79.  
  80.